home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / boostrs.arc / STIME.PAS < prev    next >
Pascal/Delphi Source File  |  1985-11-03  |  272b  |  14 lines

  1. { ---------------
  2.   SET TIME of day
  3.   --------------- }
  4. Procedure Stime ( hh, mm, ss : integer );
  5. begin
  6.    with regs do
  7.    begin
  8.       cx := swap(hh);
  9.       cx := cx or mm;
  10.       dx := swap(ss);
  11.       ax := $2D00;
  12.       intr($21,regs);
  13.    end;
  14. end { Stime };